@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');

:root{
    --fontescorrendo: "Nosifer", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body{
    background: rgba(22, 22, 22, 0.150) url("bankgroud (full)/backgroud (The day Ashley dies).png");
    font-size: 22px;
    background-size: cover;
    background-attachment: fixed;
}
.btn-inicio {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        padding: 5px 10px;
    }

.btn-inicio img {
        width: 40px;
        height: 40px;
}
main{
    max-width: 1450px;
    min-width: none;
    margin: auto;
}
nav{
    max-width: 1450px;
    min-width: none;
    margin: auto;
}
h1 {
    text-align: center;
    background-color: rgb(15, 15, 15);
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(0, 255, 10);
}
p{
    background-color: rgba(0, 0, 0, 0.750);
    border-width: 10px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px;
}
.episódios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
a:hover {
    background-color: black;
}
#centro {
    text-align: center;
}
#anterior {
    text-align: left;
}
#proximo{
    text-align: right;
}
a.nextback {
    background-color: transparent;
    color: inherit;
}
#apoie {
    text-align: left
    background-color rgba(255, 255, 255, 0);
    color: rgb(250, 250, 0);
}
@media (max-width: 530px){
body{
    background-position: center center;
    font-size: 18px;
}
}
@media (max-width: 450px){
nav img{
    width: 100px;
}
}

/* ESTILOS DA CENTRAL DE AVALIAÇÕES */
.container-avaliacoes {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(15, 15, 15, 0.9);
    border-radius: 8px;
    border: 1px solid rgb(0, 255, 10);
    color: white;
}

.container-avaliacoes h2, .container-avaliacoes h3 {
    color: rgb(0, 255, 10);
    text-align: center;
    margin-bottom: 20px;
}

#painel-resumo p {
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid rgb(0, 255, 10);
    background-color: rgba(0, 0, 0, 0.5);
}

#formAvaliacao {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.campo-estrelas, .campo-texto {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campo-estrelas select, .campo-texto textarea {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #222;
    color: white;
    font-size: 1rem;
}

.campo-texto textarea {
    resize: vertical;
}

.btn-enviar {
    width: 100%;
    padding: 12px;
    background-color: rgb(0, 255, 10);
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.2s;
}

.btn-enviar:hover {
    background-color: rgb(0, 200, 8);
}

/* CARDS DE COMENTÁRIOS PUBLICADOS */
.card-avaliacao {
    background-color: rgba(0, 0, 0, 0.6);
    border-left: 4px solid rgb(0, 255, 10);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 6px 6px 0;
}

.topo-card {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.data-card {
    color: #aaa;
}

.estrelas-card {
    margin-bottom: 10px;
}

p.texto-card {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1rem;
    color: #ddd;
}

.botoes-comentario {
    margin-top: 10px;
    text-align: right;
    border-top: 1px solid #333;
    padding-top: 8px;
}

.botoes-comentario button:hover {
    border-color: rgb(0, 255, 10) !important;
    color: rgb(0, 255, 10) !important;
    background-color: rgba(0, 255, 10, 0.05) !important;
}